StartDesign {Concrete}

StartDesign

Syntax

SapObject.SapModel.DesignConcrete.StartDesign

VB6 Procedure

Function StartDesign() As Long

Parameters

None

Remarks

This function starts the concrete frame design.

The function returns zero if the concrete frame design is successfully started; otherwise it returns a nonzero value.

The function will fail if no concrete frame objects are present. It also will fail if analysis results are not available.

VBA Example

Sub StartConcreteDesign()

'dimension variables

Dim SapObject as cOAPI

Dim SapModel As cSapModel

Dim ret As Long

'create Sap2000 object

Set SapObject = CreateObject("CSI.SAP2000.API.SapObject")

'start Sap2000 application

SapObject.ApplicationStart

'create SapModel object

Set SapModel = SapObject.SapModel

'initialize model

ret = SapModel.InitializeNewModel

'create new concrete frame section property

ret = SapModel.PropFrame.SetRectangle("R1", "4000Psi", 20, 12)

'create model from template

ret = SapModel.File.New2DFrame(PortalFrame, 2, 144, 2, 288, True, "R1", "R1")

'run analysis

ret = SapModel.File.Save("C:\SapAPI\x.sdb")

ret = SapModel.Analyze.RunAnalysis

'start concrete design

ret = SapModel.DesignConcrete.StartDesign

'close Sap2000

SapObject.ApplicationExit False

Set SapModel = Nothing

Set SapObject = Nothing

End Sub

Release Notes

Initial release in version 11.03.

See Also